
List of Commands used in 'Array Functions and Operations':

cd("PATH"): PATH - Path to the directory where code files are stored
loadFile(“polynomialEvaluatorUsingVectors.mo”)
polynomialEvaluatorUsingVectors(10)
loadFile(“functionTester.mo”)
simulate(functionTester,startTime=0,stopTime=1)
plot({z})
fill(5,2,2)
zeros(2,2)
identity(3)
a:=[1,2;3,4]
b:=identity(2)
a + b
a * b
a .* b
x = [3,4;5,6]
min(x)
max(x) 
sum(x)
product(x)

